home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 127 / PC Guia 127.iso / Software / Produtividade / OpenOffice.org 2.0.1 / openofficeorg4.cab / xmltests.py < prev    next >
Text File  |  2005-11-19  |  433b  |  20 lines

  1. # Convenience test module to run all of the XML-related tests in the
  2. # standard library.
  3.  
  4. import sys
  5. import test.test_support
  6.  
  7. test.test_support.verbose = 0
  8.  
  9. def runtest(name):
  10.     __import__(name)
  11.     module = sys.modules[name]
  12.     if hasattr(module, "test_main"):
  13.         module.test_main()
  14.  
  15. runtest("test.test_minidom")
  16. runtest("test.test_pyexpat")
  17. runtest("test.test_sax")
  18. runtest("test.test_xmllib")
  19. runtest("test.test_xmlrpc")
  20.